home *** CD-ROM | disk | FTP | other *** search
Text File | 1995-10-20 | 308 b | 20 lines | [TEXT/CWIE] |
- #include <iostream.h>
-
- short myValue = 5;
-
- int main()
- {
- short yourValue = myValue;
-
- cout << "yourValue: " << yourValue << "\n";
-
- short myValue = 10;
- yourValue = myValue;
-
- cout << "yourValue: " << yourValue << "\n";
-
- yourValue = ::myValue;
- cout << "yourValue: " << yourValue << "\n";
-
- return 0;
- }